home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Java 1996 August
/
Java - Summer 1996.iso
/
kaffe-0.2
/
kaffe
/
exception.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-02-11
|
482b
|
24 lines
/*
* exception.h
*
* Copyright (c) 1996 Systems Architecture Research Centre,
* City University, London, UK.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
*/
#ifndef __exception_h
#define __exception_h
typedef struct _exception {
u4 start_pc;
u4 end_pc;
u4 handler_pc;
char* catch_type;
} exception;
#endif